home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / zendisk1.zip / LST8-6.ASM < prev    next >
Assembly Source File  |  1990-02-15  |  235b  |  17 lines

  1. ;
  2. ; *** Listing 8-6 ***
  3. ;
  4. ; Initializes a variable to 1 via the direct-addressing
  5. ; mod-reg-rm form of MOV.
  6. ;
  7.     jmp    Skip
  8. ;
  9. InitialValue    dw    ?
  10. ;
  11. Skip:
  12.     call    ZTimerOn
  13.     rept    1000
  14.     mov    [InitialValue],1
  15.     endm
  16.     call    ZTimerOff
  17.